-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changing the subquery builder for the Oracle #5999
Conversation
Signed-off-by: Andrey Pyzhikov <5071@mail.ru>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be in the changelog as people might be expecting in their tests the AS
in the SQL.
Subquery has not been released. Do we need it to be written in the changelog? |
@paulbalandan An improvement to the BaseBuilder::buildSubquery() method, namely adding an alias, has not yet been released. If this PR and the fix in the changelog are merged before the release, then it seems to me that it makes no sense to further clarify the changes from this PR. |
Ohh. I thought this was documented already. Thanks for the clarification. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't familiar with this syntax but tests pass and everyone else likes it so it's good by me. Thanks again @iRedds
Description
Because Oracle does not support using the
AS
keyword for table aliases.This PR removes the
AS
keyword when building subqueries.Checklist: